home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 076-100 / 079 / uw / term.h < prev    next >
C/C++ Source or Header  |  1995-03-13  |  877b  |  34 lines

  1. /* INCLUDES ********************************************************** */
  2.  
  3. #include "exec/types.h"
  4. #include "exec/ports.h"
  5. #include "exec/devices.h"
  6. #include "exec/io.h"
  7. #include "exec/memory.h"
  8.  
  9. #include "libraries/dos.h"
  10. #include "graphics/text.h"
  11. #include "libraries/diskfont.h"
  12. #include "intuition/intuition.h"
  13.  
  14. /* EXTERNALS ***************************************************** */
  15.  
  16. extern struct Window *OpenWindow();
  17. extern struct Screen *OpenScreen();
  18. extern struct MsgPort *CreatePort();
  19. extern struct IOStdReq *CreateStdIO();
  20. extern struct IORequest *CreateExtIO();
  21.  
  22. /* DATA TYPES *****************/
  23. struct uw_struct {
  24.     int free;        /* is this uw struct free? */
  25.     struct MsgPort *ConReadPort, *ConWritePort;
  26.     struct IOStdReq *ConWriteReq, *ConReadReq;
  27.     struct Window *win;
  28.     int winsig, consig;
  29. };
  30.  
  31. extern struct uw_struct uw[];
  32. extern int uw_read, uw_write, uw_count;
  33.  
  34.